home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000310_news@columbia.edu _Tue Jul 20 18:55:14 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA28289
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 20 Jul 1999 18:55:14 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA16315
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 20 Jul 1999 18:46:23 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: kifox@hotmail.com
  10. Subject: Re: MSKermit with Dospppd
  11. Date: 20 Jul 1999 22:45:29 GMT
  12. Organization: Your Organization
  13. Message-ID: <7n2u69$i5r$1@autumn.news.rcn.net>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <19990719.2147.213snz@freedomnet.demon.co.uk>, 
  17. ian@freedomnet.demon.co.uk says...
  18.  
  19. F> :> Ive been trying to settup MSKermit 3.15 with the packet driver 
  20. Dospppd.
  21. F> :> The object is to connect to my ISP and use this for Telnetting into
  22. F> :> a Public Lynx. Im connecting but getting no further. What I really
  23. F> :> need is working sample script that I can adapt. Ive had a look around
  24. F> :> the Columbia Uni site but so far I havnt found anything promising.
  25. F> 
  26. F>   It sounds like you've got EPPPD to establish a PPP link, but are
  27. F> having trouble configuring your application, MS-Kermit, properly.
  28. F> Here are some tips.
  29. F> 
  30. F> 1.  It is very helpful to get your network parameters into DOS
  31. F> environment variables.  For example,
  32. F> 
  33. F> set MYIP=<your ip address (probably dynamic)>
  34. F> 
  35. F> and perhaps similary for some or all of GATEWAY, NETMASK and MSS.
  36. F> This is not hard to do with DOSPPP, see its doc's.
  37. >
  38. >*** Hi Frank ***
  39. >
  40. >Right, Im happy with using these env vars with DOSPPPD. Youre saying
  41. >that they can be used by Kermit as well?
  42. >
  43.  
  44. Um, guys? There *IS* an easier way to configure MSKermit and DOSPPP to work 
  45. together.
  46.  
  47. (1) First you'll need to get and install Dospppd .06 beta. Dosppd .05 beta 
  48. has 
  49. bugs that will cause this not to work with MSKermit. Also be sure you are
  50. using the EPPPD.EXE driver. 
  51.  
  52. (2)Add this line to your AUTOEXEC.BAT if you haven't done so already:
  53. set wattcp.cfg={name of directory where you've installed Dosppd}
  54. ex: set wattcp.cfg=c:\dosppd\
  55.  
  56. [3]  In the WATTCP.CFG  file that Dospppd uses insert the following text 
  57. near
  58.  the begining of the file:
  59. my_ip=BOOTP
  60.  
  61. [4] Add the following to the MSCUSTOM.INI file for MSKermit:
  62.  
  63. COMMENT - TCP/IP network configuration. 
  64. check tcp 
  65. if fail forward notcp 
  66.  
  67. ; If your site has a BOOTP server and your PC is registered in it, the only 
  68. ; command you need here is the following SET TCP/IP ADDRESS BOOTP command. 
  69. ; You will also need the SET TCP/IP DOMAIN command if your BOOTP server is 
  70. ; not at RFC1395 level and/or does not provide your PC's hostname 
  71. (substitute 
  72. ; your PC's real hostname for FOO.BAR.EDU). 
  73. set tcp address BOOTP                             ; BOOTP will tell me my IP 
  74. address 
  75. ; SET TCP/IP DOMAIN FOO.BAR.EDU        ; My network's domain name 
  76.  
  77. And that's just about all there is to it.  Yes, you can configure Dospppd to 
  78. act as
  79. an dial-up BOOTP server that will work with MSKermit and other Wattcp-based
  80. software such as the DJGPP port of Lynx to MS-DOS.
  81.  
  82.